HTMLify
index.html
Views: 424 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>Theme Changing Toggle</title> <meta name='viewport' content='width=device-width, initial-scale=1'> <link rel='stylesheet' type='text/css' media='screen' href='style.css'> </head> <body> <label class="switch"> <input class="switch__input" type="checkbox" role="switch"> <svg class="switch__icon switch__icon--dark" viewBox="0 0 12 12" width="12px" height="12px" aria-hidden="true"> <g fill="none" stroke="#fff" stroke-width="1" stroke-linecap="round"> <circle cx="6" cy="6" r="2" /> <g stroke-dasharray="1.5 1.5"> <polyline points="6 10,6 11.5" transform="rotate(0,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(45,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(90,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(135,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(180,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(225,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(270,6,6)" /> <polyline points="6 10,6 11.5" transform="rotate(315,6,6)" /> </g> </g> </svg> <svg class="switch__icon switch__icon--light" viewBox="0 0 12 12" width="12px" height="12px" aria-hidden="true"> <g fill="none" stroke="#fff" stroke-width="1" stroke-linejoin="round" transform="rotate(-45,6,6)"> <path d="m9,10c-2.209,0-4-1.791-4-4s1.791-4,4-4c.304,0,.598.041.883.105-.995-.992-2.367-1.605-3.883-1.605C2.962.5.5,2.962.5,6s2.462,5.5,5.5,5.5c1.516,0,2.888-.613,3.883-1.605-.285.064-.578.105-.883.105Z" /> </g> </svg> <span class="switch__sr">Dark Mode</span> </label> </body> </html> |